home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / VISCAFE.BIN / VPOJAVA.DLL / SOURCE / WINDOW < prev   
Encoding:
Text File  |  1997-06-19  |  463 b   |  27 lines

  1. /*
  2.     A basic extension of the java.awt.Window class
  3.  */
  4.  
  5. import java.awt.*;
  6.  
  7. public class Window1 extends Window {
  8.  
  9.     public Window1(Frame parent) {
  10.  
  11.         super(parent);
  12.  
  13.         //{{INIT_CONTROLS
  14.         setLayout(null);
  15.         // addNotify();
  16.         resize(insets().left + insets().right + 430,insets().top + insets().bottom + 270);
  17.         //}}
  18.     }
  19.  
  20.     public boolean handleEvent(Event event) {
  21.         return super.handleEvent(event);
  22.     }
  23.  
  24.     //{{DECLARE_CONTROLS
  25.     //}}
  26. }
  27.